home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / tabvie.zip / ABOUT.CPP next >
C/C++ Source or Header  |  1994-04-13  |  744b  |  36 lines

  1. #include "stdafx.h"
  2. #include "resource.h"
  3. #include "about.h"
  4.  
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CAboutDlg dialog used for App About
  7. #define BASE    CDialog
  8. #define THIS    CAboutDlg
  9.  
  10. //IMPLEMENT_DYNCREATE(CAboutDlg, CTabDialog)
  11. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  12. {
  13.     //{{AFX_DATA_INIT(CAboutDlg)
  14.     //}}AFX_DATA_INIT
  15. }
  16. BOOL THIS::OnInitDialog()
  17. {
  18.     BASE::OnInitDialog();
  19.     CenterWindow();
  20.  
  21.     return TRUE;
  22. }
  23. void THIS::DoDataExchange(CDataExchange* pDX)
  24. {
  25.     BASE::DoDataExchange(pDX);
  26.     //{{AFX_DATA_MAP(CAboutDlg)
  27.     //}}AFX_DATA_MAP
  28. }
  29.  
  30. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  31.     //{{AFX_MSG_MAP(CAboutDlg)
  32.         // No message handlers
  33.     //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35.  
  36.